home *** CD-ROM | disk | FTP | other *** search
/ 130 MIDI Tool Box / 130 MIDI Tool Box.iso / mqupdate / dx7.mbt < prev    next >
Text File  |  1989-12-26  |  932b  |  22 lines

  1. ;=============================================================================
  2. ; This example illustrates how to upload and download patch
  3. ; banks from/to a DX-7
  4. ;
  5. ; (c) Copyright 1989 by DMA Software
  6. ; All rights reserved
  7. ;=============================================================================
  8. ;
  9. ; First, we do the upload
  10. ;
  11. flushbuffer                             ;prepare to receive data
  12. sysex 0x43 0x20 9 0xF7                  ;request bulk dump from DX-7
  13. timeout 5                               ;if nothing is received for 5 seconds,
  14.                                         ;we'll timeout
  15. receivefile e:sysex.dx7                 ;write data to file
  16. ;
  17. ; Then, we do the down load
  18. ;
  19. sysex 0x43 0x10 0x19 83 0 0xF7          ;This sysex turns off memory protect
  20. pacing 512                              ;Report status every 512 bytes
  21. sendfile e:sysex.dx7                    ;Now, send the file from above
  22.